7d0d2ba66ad2910940928848db5917228a019e13,com.basistech.m2e.code.quality.checkstyle/src/main/java/com/basistech/m2e/code/quality/checkstyle/MavenPluginConfigurationTranslator.java,MavenPluginConfigurationTranslator,getConfigLocation,#,232

Before Change


	 * @throws CoreException
	 */
	private String getConfigLocation() throws CoreException {
		String configLocation = configurator.getParameterValue(mavenProject,
		        "configLocation", String.class, execution, monitor);
		if (configLocation == null) {
			configLocation = CHECKSTYLE_DEFAULT_CONFIG_LOCATION;
		}

After Change


	 * @throws CoreException
	 */
	private String getConfigLocation() throws CoreException {
		return getParameterValue("configLocation", String.class,
		        CHECKSTYLE_DEFAULT_CONFIG_LOCATION);
	}

	private String getHeaderLocation() throws CoreException {